home *** CD-ROM | disk | FTP | other *** search
/ Programmer Power Tools / Programmer Power Tools.iso / microcrn / issue_40.arc / DAIMS.ARC / TEST.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1988-02-10  |  384 b   |  16 lines

  1. #include <math.h>
  2. #include "viscosity.h"
  3. #include "matrix.hxx"
  4. #include "vimatrix.hxx"
  5. #include "Cheb_vector.hxx"
  6. #include "ekman.hxx"
  7. #include "ocpanel.hxx"
  8. #include "ocean.hxx"
  9.  
  10.  
  11. main() {
  12.     Cheb_vector A(10,20), B(10, 30);
  13.     Cheb_vector C = A - B;
  14.     cout << C;
  15. }
  16.